home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / yesno21.zip / HELP.TXT < prev    next >
Text File  |  1993-03-29  |  6KB  |  124 lines

  1.               ┌──────────────────────────────────────────────┐
  2.               │ HELP FOR NEW USERS & PROBLEMS YOU MIGHT HAVE │
  3.               └──────────────────────────────────────────────┘
  4.  
  5.      Public domain software and shareware are actually very easy to use
  6. if you are familiar with a few basic "DOS" commands.  Those commands are
  7. "COPY", "DISKCOPY", "DIR", "TYPE", "MORE" & a few others.
  8.  
  9.  
  10.            ┌───────────────────────────────────────────────────┐
  11.            │ Making a backup of the ORIGINAL Software Diskette │
  12.            └───────────────────────────────────────────────────┘
  13.  
  14.      The first thing to do with the original disks is to make cover the 
  15. write protect a make backup copy with the following command:
  16.  
  17.   A:\>DISKCOPY A: B:  <enter>
  18.  
  19.      In the event that you get some sort of error message when using 
  20. "DISKCOPY", you will then have to use the "COPY" command to make a 
  21. backup of your original disk. You would do this by placing a
  22. FORMATTED disk in the "B" drive and entering the following command
  23. at the "A:\>" prompt: 
  24.      
  25.   A:\>COPY *.* B:  <enter> - (will copy all files from A to B)
  26.  
  27.      Now put the original disk away and use the working copy.  The next
  28. thing to do is see what files are on the disk.  You would do this by
  29. placing the disk in the "A" drive and enter the following command:
  30.  
  31.  
  32.                     ┌─────────────────────────────────┐
  33.                     │ Viewing the files on a diskette │
  34.                     └─────────────────────────────────┘
  35.  
  36.   A:\>DIR <enter> - will display the filenames
  37.  
  38.      Now you will see many different filenames.  A filename consists of two
  39. parts; the filename & the extension.  The filename will be on the left
  40. (up to 8 characters long) & the extension will be just to the right
  41. (up to 3 characters long).  You will be looking for certain extension
  42. names; which will tell you something about that type of file.  
  43.  
  44.   EXE - a program file 
  45.   COM - a command file
  46.   BAT - a file with "DOS" commands that may call a program file
  47.   BAS - a "BASIC" program. Needs GWBASIC or BASICA to run the file
  48.   ZIP - a archived file - needs to be unzipped, contains many files
  49.   ARJ - a archived file - needs to be unarjed, contains many files
  50.   DOC - DOCUMENTATION FILE - instructions about the program - READ THESE
  51.   TXT - TEXT FILE - instructions about the program - READ THESE 
  52.  
  53.      You may also see files like READ.ME or README.1ST or just README.
  54. These are all instruction files that will tell you about the program or
  55. how the program works.
  56.  
  57.               IT IS VERY IMPORTANT THAT YOU READ INSTRUCTIONS
  58.                  FIRST BEFORE TRYING TO RUN THE PROGRAM !!!
  59.  
  60.  
  61.  
  62.                     ┌─────────────────────────────────┐
  63.                     │ Viewing & Printing Instructions │
  64.                     └─────────────────────────────────┘
  65.  
  66.      To view a documentation file on your screen, use the "TYPE" command.
  67. With your program disk in the "A" drive enter the following command
  68. from the "A" drive:
  69.  
  70.  A:\>TYPE | MORE filename.ext <enter> - where filename would be README.DOC
  71.                                         or whatever the filename is that you
  72.                                         wish to display.
  73.  
  74.      This will display the documentation to the screen one page at a time.
  75. To obtain a hard copy of the documentation simply use the "PRINT" command.
  76. Turn your printer on and enter the following command:
  77.  
  78.  A:\>PRINT B:filename.ext <enter> - where filename would be README.DOC or 
  79.                                     whatever file you wish to print.
  80.  
  81.  
  82.                            ┌────────────────────┐
  83.                            │ Starting a Program │
  84.                            └────────────────────┘
  85.  
  86.      An "EXE", "COM", or "BAT" file extension means that when you simply 
  87. enter the filename, the computer will do something.  For instance,
  88. if the filename were "POKER.EXE", you would simply enter the following
  89. at the "A" prompt:
  90.  
  91.   A:\>POKER <enter> - the poker program would now be "running" and
  92.                        you would be playing it.  This also holds true
  93.                        for "COM" files.  A "BAT" file may call a program
  94.                        or it may just display a documentation file. "BAT"
  95.                        files can do many different things.
  96.  
  97.  
  98.                       ┌─────────────────────────────┐
  99.                       │ Working with Archived Files │
  100.                       └─────────────────────────────┘
  101.  
  102.      Another important file is one with a "ZIP", "ARJ" or "ARC" extension.
  103. This means that it contains many smaller files within it.  This is a type
  104. of file that is sent over a phone line when using a modem.  All that is
  105. required to use the files contained inside is to extract them with a
  106. special program.  The program most commonly used is called "PKUNZIP.EXE".
  107. To extract files from a file called "TEST.ZIP", you would use the
  108. following command at the "A" prompt:
  109.      
  110.   A:\>PKUNZIP TEST B: <enter> - this would extract all the files from 
  111.                                 TEST.ZIP and place them on a disk that
  112.                                 was in the "B" drive.  You must have a
  113.                                 formatted blank disk in the "B" drive
  114.                                 before issuing this command.  When all
  115.                                 files have been extracted you will see
  116.                                 some of the filenames mentioned above.
  117.  
  118.      If you have a hard drive you could copy the "ZIP" files & the 
  119. program "PKUNZIP.EXE" to your hard drive & enter the following command:
  120.  
  121.   C:\>PKUNZIP TEST <enter>  -  this will extract all the files from an
  122.                                archived state. Then will see some of the
  123.                                different filenames mentioned above.
  124.